-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented Tailwind / Added Forms #48
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
src/components/App/App.css
Outdated
justify-content: space-between; | ||
padding-bottom: 5rem; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making a note of this rule for min-height vs max-height and padding bottom bc it's working effectively on my branch with max height and no padding.
@@ -89,8 +89,9 @@ | |||
@media screen and (min-width: 1025px){ | |||
.BreadListWrapper h2 { | |||
margin-top: 2rem; | |||
font-size: xx-large; | |||
font-size: 2rem; | |||
margin-bottom: 1rem; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be a merge conflict with the working code on my branch but since my styling has all migrated to the inline JSX with Tailwind, it should be easy to reconcile. If we need to change the font and margin top, we can adjust as needed.
const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => { | ||
const { name, value } = event.target; | ||
setCredentials({ ...credentials, [name]: value }); | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job implementing this with TS!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job creating the user account form in TypeScript and adding the GeoJSON. I have some concerns about the Tailwind and styling conflicting since we were working on the same components. I will resolve the merge conflicts and made note of the conflicting CSS that might need revisiting. Rn, the styling looks good on my side with significant margins and padding differing for the main and app components.
What kind of change does this PR introduce?
Feature description:
Checklist before requesting a review
What’s next:
Work on styling consistency across devices, integrate working breadbox